home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / debconf.prerm < prev    next >
Encoding:
Text File  |  2011-01-30  |  173 b   |  12 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. # copied from /usr/share/debhelper/autoscripts/prerm-python for now
  5. dpkg -L debconf |
  6.     awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
  7.     xargs rm -f >&2
  8.  
  9.  
  10.  
  11. exit 0
  12.